body,
html {
    margin: 0;
    padding: 0;
    font-family: 'Lexend Giga', sans-serif;
    height: 100%;
    overflow: auto;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 64px;
    background-color: black;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    z-index: 2;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1000px;
    padding: 0 16px;
}

.header-logo {
    display: flex;
    align-items: center;
}

.header-logo img {
    max-height: 40px;
    margin-right: 20px;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 12px;
    font-weight: 400;
}

.nav-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.nav-buttons button {
    background-color: white;
    color: black;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 400;
    border-radius: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-buttons button:hover {
    background-color: #f0f0f0;
}

/* Banner y Contenido */
.banner {
    position: relative;
    height: 100vh;
    width: 100%;
}

.banner video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    filter: grayscale(100%);
    object-fit: cover;
}

.content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: calc(100vh - 64px);
    padding: 16px;
    box-sizing: border-box;
    margin-top: 64px;
}

.content-wrapper {
    max-width: 800px;
    width: 100%;
    padding: 0 16px;
    margin: 0 auto;
}

.content img.logo {
    max-height: 70px;
    margin: 16px;
}

.content h1 {
    font-size: 18px;
    margin: 16px;
    font-weight: 400;
}

.content img.img2 {
    margin: 16px;
    max-width: 700px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 5px rgba(255, 255, 255, 0.16);
    object-fit: cover;
}

.features {
    background-color: black;
    color: white;
    padding: 50px 0;
    text-align: center;
}

.floating-button {
    position: fixed;
    bottom: 40px;
    right: 50px;
    background-color: white;
    color: black;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 400;
    border-radius: 15px;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.floating-button:hover {
    background-color: #f0f0f0;
}

.waitlist-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 5, 0.8);
    z-index: 50;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.waitlist-modal {
    display: none;
    position: fixed;
    top: 64px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 600px;
    z-index: 60;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    max-height: calc(100vh - 80px);
    overflow-y: auto;
}

.cal-modal,
.cal__modal {
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    margin-top: 64px;
}

::-webkit-scrollbar-thumb {
    background: black;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #333;
}